Juan Luis Cano Rodríguez

Results 1837 comments of Juan Luis Cano Rodríguez

Today I was helping @ricardopicon-mck and it was not clear how to use Google Cloud credentials. There are excellent examples of how to set up the `catalog.yml`: https://docs.kedro.org/en/stable/data/data_catalog_yaml_examples.html#load-an-excel-file-from-google-cloud-storage But how...

We might need to document as well how credentials work during development vs in production, see this response by @noklam to a Prefect user https://linen-slack.kedro.org/t/16019525/hi-another-question-is-there-a-way-to-directly-store-the-con#146bb5db-314d-414f-947a-fd9d64f4d223

There are more problems with the snippet @noklam shared. This is a setup that worked for me: ```yaml # catalog.yml executive_summary: type: text.TextDataset filepath: s3://social-summarizer/executive-summary.txt versioned: true credentials: minio_fsspec #...

I think we should do this after #3811

The old `react-scripts` version is still blocking me, after applying the workaround I found #1278 again.

Progress! After #1854 this is mostly there. Now getting this: ``` Proxy error: Could not proxy request /api/main from localhost:4141 to http://localhost:4142/. See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (ECONNREFUSED). Proxy error:...

I can't reproduce my original error @SajidAlamQB 😅 and my follow-up comment is about me not launching the backend, only the frontend. I think we can safely close this.

In a past life I was using asv for this https://github.com/airspeed-velocity/asv/ ![benchmarks](https://github.com/user-attachments/assets/12c39f63-8bb1-47f3-b859-4b3cdc1f7805)

``` In [16]: catalog = KedroDataCatalog() In [17]: catalog.add_feed_dict({"ds": GBQQueryDataset("SELECT 1", "test_table", credentials=Credentials("abc"))}) In [18]: catalog.list() Out[18]: ['ds'] In [19]: catalog.to_config() Out[19]: ({}, {}, {}, None) ``` Should I have...

It does happen with a dataset only instantiated with primitive properties though 🤔 ``` In [20]: catalog = KedroDataCatalog() In [21]: catalog.add_feed_dict({"ds": GBQQueryDataset("SELECT 1", "test_table")}) In [22]: catalog.list() Out[22]: ['ds']...