Closed viplazylmht closed 2 months ago
Hello @viplazylmht. With the upcoming launch of Great Expectations Core (GX 1.0), we are closing old issues posted regarding previous versions. Moving forward, we will focus our resources on supporting and improving GX Core (version 1.0 and beyond). If you find that an issue you previously reported still exists in GX Core, we encourage you to resubmit it against the new version. With more resources dedicated to community support, we aim to tackle new issues swiftly. For specific details on what is GX-supported vs community-supported, you can reference our integration and support policy.
To get started on your transition to GX Core, check out the GX Core quickstart (click “Full example code” tab to see a code example).
You can also join our upcoming community meeting on August 28th at 9am PT (noon ET / 4pm UTC) for a comprehensive rundown of everything GX Core, plus Q&A as time permits. Go to https://greatexpectations.io/meetup and click “follow calendar” to follow the GX community calendar.
Thank you for being part of the GX community and thank you for submitting this issue. We're excited about this new chapter and look forward to your feedback on GX Core. 🤗
Closing
Describe the bug I'm running GE on Airflow by using GreatExpectationOperator. Things work well until I upgrade GE to v 0.14.6, then I can't instantiate a runtime BaseDataContext with context Config and checkpoint Config.
I debug and found the problem is caused by instantiate_class_from_config
__init__()
. I moved the hole code back to local Linux environment for testing but the bug still exist.To Reproduce
type(context)
great_expectations.data_context.data_context.BaseDataContext
Yes, I found a outstanding move here: Why we need convert
cpoint
fromCheckpointConfig
back tojson
, then pass to initCheckpoint
?Expected behavior Instantiate successfully Checkpoint via config (expected via
CheckpointConfig
instead ofjson
).Temporary fix I removed 4 keys in
json_dict
that make the error before instantiate_class_from_config:I call it temporary fix because I don't use these configs which make the error now, but maybe I will use it in the future.
Environment:
Additional context I use
RuntimeDataConnector
to connect to a BigQuery data source.Stack trace: