AWS Beanstalk Error 504 Timeout on Python Flask Application












1















I'm trying to deploy a Python Flask application on AWS Bean stalk. I have decent experience in python but totally new to deployments. I've been getting an error which says " url took too long to respond HTTP 504 ". My environment's health is totally fine and all my deployments to the instance doesn't indicate any errors, yet I seem to be getting this 504 issue



Error looks like this:



Error 504



Error Log looks like this:
Error Log



Access Log:
Access Logs



Here's my code:



from flask import Flask, request
from flask_restful import Resource, Api

import firebase_admin

# For connecting to firestore database and authentication
from firebase_admin import credentials, firestore

# For Cross-Origin Http requests
from flask_cors import CORS, cross_origin

# For Data base Connectivity
from firebase_admin import db

from flask import jsonify

application = app = Flask(__name__)
api = Api(app)


CORS(app)

class Firebase_Data(Resource):

def get(self):

return self._getData()

def _getData(self):

# Setting up credentials to connect
cred = credentials.Certificate(****)

# Setting up secure connection to firestore Real time database

Kokomo_app = firebase_admin.initialize_app(cred, {
'projectId' : '****'
})


# Connecting to the firestore client
db_ref = firestore.client()

# Referring to a section of the data
ref_inc = db_ref.collection(****)

# Fetching all the records under that particular section and converting
them to list of dictionaries
docs = list( ref_inc.get() )



lat_long =

for doc in docs:

data = doc.to_dict()

lat_long.append(

{ 'Latitude:' : data['latitude'], 'Longitude' :
data['longitude'] } )


return lat_long


api.add_resource(Firebase_Data, '/Firebase_Data') # Route_1

if __name__ == '__main__':
app.run()


My requirements file:



aniso8601==4.0.1

CacheControl==0.12.5

cachetools==3.0.0

certifi==2018.10.15

chardet==3.0.4

Click==7.0

firebase-admin==2.13.0

Flask==1.0.2

Flask-Cors==3.0.7

Flask-RESTful==0.3.6

google-api-core==1.5.2

google-auth==1.6.1

google-cloud-core==0.28.1

google-cloud-firestore==0.30.0

google-cloud-storage==1.13.0

google-resumable-media==0.3.1

googleapis-common-protos==1.5.5

grpcio==1.16.1

idna==2.7

itsdangerous==1.1.0

Jinja2==2.10

MarkupSafe==1.1.0

msgpack==0.5.6

protobuf==3.6.1

pyasn1==0.4.4

pyasn1-modules==0.2.2

pytz==2018.7

requests==2.20.1

rsa==4.0

six==1.11.0

urllib3==1.24.1

Werkzeug==0.14.1


I've checked my logs , every dependency package in my requirements file seems to have installed properly without any issues, I'm using apache library and also installed latest mod_wsgi package.... I followed some AWS resources and increased the load balancers' timeout but it didn't fix the issue



I've seen many Stack overflow questions related to these, but didn't seem to find a complete or a concrete answer.I'm creating this question in-spite of that is because I have very few attempts left to deploy in my free tier, so I want to make them count. I highly appreciate your time and efforts in advance.



note: Please ignore the indentations in this code. I manipulated the spacing badly to fit inside the code block.



Thanks










share|improve this question























  • Guys ?? Anyone ??

    – Amith Adiraju
    Nov 25 '18 at 15:20
















1















I'm trying to deploy a Python Flask application on AWS Bean stalk. I have decent experience in python but totally new to deployments. I've been getting an error which says " url took too long to respond HTTP 504 ". My environment's health is totally fine and all my deployments to the instance doesn't indicate any errors, yet I seem to be getting this 504 issue



Error looks like this:



Error 504



Error Log looks like this:
Error Log



Access Log:
Access Logs



Here's my code:



from flask import Flask, request
from flask_restful import Resource, Api

import firebase_admin

# For connecting to firestore database and authentication
from firebase_admin import credentials, firestore

# For Cross-Origin Http requests
from flask_cors import CORS, cross_origin

# For Data base Connectivity
from firebase_admin import db

from flask import jsonify

application = app = Flask(__name__)
api = Api(app)


CORS(app)

class Firebase_Data(Resource):

def get(self):

return self._getData()

def _getData(self):

# Setting up credentials to connect
cred = credentials.Certificate(****)

# Setting up secure connection to firestore Real time database

Kokomo_app = firebase_admin.initialize_app(cred, {
'projectId' : '****'
})


# Connecting to the firestore client
db_ref = firestore.client()

# Referring to a section of the data
ref_inc = db_ref.collection(****)

# Fetching all the records under that particular section and converting
them to list of dictionaries
docs = list( ref_inc.get() )



lat_long =

for doc in docs:

data = doc.to_dict()

lat_long.append(

{ 'Latitude:' : data['latitude'], 'Longitude' :
data['longitude'] } )


return lat_long


api.add_resource(Firebase_Data, '/Firebase_Data') # Route_1

if __name__ == '__main__':
app.run()


My requirements file:



aniso8601==4.0.1

CacheControl==0.12.5

cachetools==3.0.0

certifi==2018.10.15

chardet==3.0.4

Click==7.0

firebase-admin==2.13.0

Flask==1.0.2

Flask-Cors==3.0.7

Flask-RESTful==0.3.6

google-api-core==1.5.2

google-auth==1.6.1

google-cloud-core==0.28.1

google-cloud-firestore==0.30.0

google-cloud-storage==1.13.0

google-resumable-media==0.3.1

googleapis-common-protos==1.5.5

grpcio==1.16.1

idna==2.7

itsdangerous==1.1.0

Jinja2==2.10

MarkupSafe==1.1.0

msgpack==0.5.6

protobuf==3.6.1

pyasn1==0.4.4

pyasn1-modules==0.2.2

pytz==2018.7

requests==2.20.1

rsa==4.0

six==1.11.0

urllib3==1.24.1

Werkzeug==0.14.1


I've checked my logs , every dependency package in my requirements file seems to have installed properly without any issues, I'm using apache library and also installed latest mod_wsgi package.... I followed some AWS resources and increased the load balancers' timeout but it didn't fix the issue



I've seen many Stack overflow questions related to these, but didn't seem to find a complete or a concrete answer.I'm creating this question in-spite of that is because I have very few attempts left to deploy in my free tier, so I want to make them count. I highly appreciate your time and efforts in advance.



note: Please ignore the indentations in this code. I manipulated the spacing badly to fit inside the code block.



Thanks










share|improve this question























  • Guys ?? Anyone ??

    – Amith Adiraju
    Nov 25 '18 at 15:20














1












1








1








I'm trying to deploy a Python Flask application on AWS Bean stalk. I have decent experience in python but totally new to deployments. I've been getting an error which says " url took too long to respond HTTP 504 ". My environment's health is totally fine and all my deployments to the instance doesn't indicate any errors, yet I seem to be getting this 504 issue



Error looks like this:



Error 504



Error Log looks like this:
Error Log



Access Log:
Access Logs



Here's my code:



from flask import Flask, request
from flask_restful import Resource, Api

import firebase_admin

# For connecting to firestore database and authentication
from firebase_admin import credentials, firestore

# For Cross-Origin Http requests
from flask_cors import CORS, cross_origin

# For Data base Connectivity
from firebase_admin import db

from flask import jsonify

application = app = Flask(__name__)
api = Api(app)


CORS(app)

class Firebase_Data(Resource):

def get(self):

return self._getData()

def _getData(self):

# Setting up credentials to connect
cred = credentials.Certificate(****)

# Setting up secure connection to firestore Real time database

Kokomo_app = firebase_admin.initialize_app(cred, {
'projectId' : '****'
})


# Connecting to the firestore client
db_ref = firestore.client()

# Referring to a section of the data
ref_inc = db_ref.collection(****)

# Fetching all the records under that particular section and converting
them to list of dictionaries
docs = list( ref_inc.get() )



lat_long =

for doc in docs:

data = doc.to_dict()

lat_long.append(

{ 'Latitude:' : data['latitude'], 'Longitude' :
data['longitude'] } )


return lat_long


api.add_resource(Firebase_Data, '/Firebase_Data') # Route_1

if __name__ == '__main__':
app.run()


My requirements file:



aniso8601==4.0.1

CacheControl==0.12.5

cachetools==3.0.0

certifi==2018.10.15

chardet==3.0.4

Click==7.0

firebase-admin==2.13.0

Flask==1.0.2

Flask-Cors==3.0.7

Flask-RESTful==0.3.6

google-api-core==1.5.2

google-auth==1.6.1

google-cloud-core==0.28.1

google-cloud-firestore==0.30.0

google-cloud-storage==1.13.0

google-resumable-media==0.3.1

googleapis-common-protos==1.5.5

grpcio==1.16.1

idna==2.7

itsdangerous==1.1.0

Jinja2==2.10

MarkupSafe==1.1.0

msgpack==0.5.6

protobuf==3.6.1

pyasn1==0.4.4

pyasn1-modules==0.2.2

pytz==2018.7

requests==2.20.1

rsa==4.0

six==1.11.0

urllib3==1.24.1

Werkzeug==0.14.1


I've checked my logs , every dependency package in my requirements file seems to have installed properly without any issues, I'm using apache library and also installed latest mod_wsgi package.... I followed some AWS resources and increased the load balancers' timeout but it didn't fix the issue



I've seen many Stack overflow questions related to these, but didn't seem to find a complete or a concrete answer.I'm creating this question in-spite of that is because I have very few attempts left to deploy in my free tier, so I want to make them count. I highly appreciate your time and efforts in advance.



note: Please ignore the indentations in this code. I manipulated the spacing badly to fit inside the code block.



Thanks










share|improve this question














I'm trying to deploy a Python Flask application on AWS Bean stalk. I have decent experience in python but totally new to deployments. I've been getting an error which says " url took too long to respond HTTP 504 ". My environment's health is totally fine and all my deployments to the instance doesn't indicate any errors, yet I seem to be getting this 504 issue



Error looks like this:



Error 504



Error Log looks like this:
Error Log



Access Log:
Access Logs



Here's my code:



from flask import Flask, request
from flask_restful import Resource, Api

import firebase_admin

# For connecting to firestore database and authentication
from firebase_admin import credentials, firestore

# For Cross-Origin Http requests
from flask_cors import CORS, cross_origin

# For Data base Connectivity
from firebase_admin import db

from flask import jsonify

application = app = Flask(__name__)
api = Api(app)


CORS(app)

class Firebase_Data(Resource):

def get(self):

return self._getData()

def _getData(self):

# Setting up credentials to connect
cred = credentials.Certificate(****)

# Setting up secure connection to firestore Real time database

Kokomo_app = firebase_admin.initialize_app(cred, {
'projectId' : '****'
})


# Connecting to the firestore client
db_ref = firestore.client()

# Referring to a section of the data
ref_inc = db_ref.collection(****)

# Fetching all the records under that particular section and converting
them to list of dictionaries
docs = list( ref_inc.get() )



lat_long =

for doc in docs:

data = doc.to_dict()

lat_long.append(

{ 'Latitude:' : data['latitude'], 'Longitude' :
data['longitude'] } )


return lat_long


api.add_resource(Firebase_Data, '/Firebase_Data') # Route_1

if __name__ == '__main__':
app.run()


My requirements file:



aniso8601==4.0.1

CacheControl==0.12.5

cachetools==3.0.0

certifi==2018.10.15

chardet==3.0.4

Click==7.0

firebase-admin==2.13.0

Flask==1.0.2

Flask-Cors==3.0.7

Flask-RESTful==0.3.6

google-api-core==1.5.2

google-auth==1.6.1

google-cloud-core==0.28.1

google-cloud-firestore==0.30.0

google-cloud-storage==1.13.0

google-resumable-media==0.3.1

googleapis-common-protos==1.5.5

grpcio==1.16.1

idna==2.7

itsdangerous==1.1.0

Jinja2==2.10

MarkupSafe==1.1.0

msgpack==0.5.6

protobuf==3.6.1

pyasn1==0.4.4

pyasn1-modules==0.2.2

pytz==2018.7

requests==2.20.1

rsa==4.0

six==1.11.0

urllib3==1.24.1

Werkzeug==0.14.1


I've checked my logs , every dependency package in my requirements file seems to have installed properly without any issues, I'm using apache library and also installed latest mod_wsgi package.... I followed some AWS resources and increased the load balancers' timeout but it didn't fix the issue



I've seen many Stack overflow questions related to these, but didn't seem to find a complete or a concrete answer.I'm creating this question in-spite of that is because I have very few attempts left to deploy in my free tier, so I want to make them count. I highly appreciate your time and efforts in advance.



note: Please ignore the indentations in this code. I manipulated the spacing badly to fit inside the code block.



Thanks







python amazon-web-services flask mod-wsgi amazon-elastic-beanstalk






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 '18 at 19:09









Amith AdirajuAmith Adiraju

275




275













  • Guys ?? Anyone ??

    – Amith Adiraju
    Nov 25 '18 at 15:20



















  • Guys ?? Anyone ??

    – Amith Adiraju
    Nov 25 '18 at 15:20

















Guys ?? Anyone ??

– Amith Adiraju
Nov 25 '18 at 15:20





Guys ?? Anyone ??

– Amith Adiraju
Nov 25 '18 at 15:20












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419018%2faws-beanstalk-error-504-timeout-on-python-flask-application%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419018%2faws-beanstalk-error-504-timeout-on-python-flask-application%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

鏡平學校

ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

Why https connections are so slow when debugging (stepping over) in Java?