sivankumar86
sivankumar86
def get_instrument_for_option(self, symbol, expiry_date, strike=None,option_type='CE' , exchange='NFO'): """ get instrument for FNO """ master_con = self.get_master_contract('NFO') strike_str="{:.1f}".format(strike) symbol_u=symbol.upper() dateFormatted = expiry_date.strftime("%b").upper() key="{} {} {} {}".format(symbol_u,dateFormatted,strike_str,option_type) if (key in master_con): res=master_con[key]...
i installed cryptography==41.0.7 after installing snowflake connector. it works fine but, dirty workaround. ``` pip install --no-cache snowflake-sqlalchemy==1.5.0 \ cryptography==41.0.7 ```
@mrn3 SUPERSET_VERSION=3.1.1
@marcosmarxm Thanks for reply. At the moment, we are running jobs 4 hours once and nightly jobs hence, it would be great if we can increase /decrease the workers based...
Have you tried this ? ``` FROM python:3.9.11-alpine3.15 # upgrade pip to the latest version RUN apk --no-cache upgrade \ && pip install --upgrade pip \ && apk --no-cache add...
Have you tried this ? ``` FROM python:3.9.11-alpine3.15 # upgrade pip to the latest version RUN apk --no-cache upgrade \ && pip install --upgrade pip \ && apk --no-cache add...
@marcosmarxm I have upgraded to 0.60.0 but, I am still facing rate limit error
I increased some temporal config which i got it from temporal community and reduced number of workers (10 --> 3). Error disappeared https://community.temporal.io/t/resource-exhausted-namespace-rate-limit-exceeded-for-cron-job/7583 ``` # when modifying, remember to update...
@walker-philips I meant, replicas count. Find my conf file for reference if it helps. Verify using ``` k describe cm airbyte-oss-temporal-dynamicconfig # airbyte-oss name of deployment ``` ``` worker: enabled:...
@walker-philips Could you restart the temporal pod after applying changes if you have not done yet ?