Member since
02-07-2019
2746
Posts
241
Kudos Received
31
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2341 | 08-21-2025 10:43 PM | |
| 2689 | 04-15-2025 10:34 PM | |
| 6979 | 10-28-2024 12:37 AM | |
| 2424 | 09-04-2024 07:38 AM | |
| 4419 | 06-10-2024 10:24 PM |
06-17-2024
10:10 PM
Hi @RangaReddy , thank you very much for your response and suggestions. I tried the steps you recommended, and while they were helpful, I found that the issue was ultimately resolved by increasing the executor memory and by setting the spark.file.transferTo=false. I appreciate your assistance.
... View more
06-17-2024
07:30 AM
Hi @EFasdfSDfaSDFG From Hive the following formats supported : Parquet (default), Avro, ORC Create table examples: CREATE EXTERNAL TABLE test_ice_1 ( i INT, t TIMESTAMP, j BIGINT) STORED BY ICEBERG; CREATE EXTERNAL TABLE test_ice_2 (i INT, t TIMESTAMP) PARTITIONED BY (j BIGINT) STORED BY ICEBERG; CREATE EXTERNAL TABLE test_ice_3 (i int) STORED AS ORC STORED BY ICEBERG LOCATION ''; CREATE EXTERNAL TABLE test_ice_4 (i int) STORED BY ICEBERG TBLPROPERTIES ('key'='value', 'key'='value') CREATE EXTERNAL TABLE test_ice_1 (i int) STORED AS ORC STORED BY ICEBERG TBLPROPERTIES ('format-version' = '2');
... View more
06-14-2024
09:57 AM
1 Kudo
@thegreatdakness Welcome to the Cloudera Community! I have reached to you via DM with next steps, thanks!
... View more
06-14-2024
12:28 AM
I am sceptical that quickstartvm is still available. AFAIK, both Cloudera quickstartvm and Hortonworks sandbox are deprecated and download links/documentations are not public now. You may check if any of archived/cached pages still have the documentation.
... View more
06-11-2024
09:55 PM
@kbkim, I have sent you a DM for further details.
... View more
06-10-2024
10:32 PM
@Naveen_Sagar, were you able to resolve this issue? If you were, could you please share the solution so that it can help others? If you still have concerns, could you please provide the information that @ckumar has requested?
... View more
06-04-2024
09:54 AM
@inkerinmaa Out of the box Apache NiFi is configured to be secure. and Most browser do not support HTTP anymore and force redirect to HTTPS. NiFi is going to come up in secured if you have the HTTPS port property configured in the nifi.properties file. So you would need to unset that property for NiFi to start unsecure. Thanks, Matt
... View more
06-02-2024
10:15 PM
@Naveen_Sagar, Did the response assist in resolving your query? If it did, kindly mark the relevant reply as the solution, as it will aid others in locating the answer more easily in the future.
... View more
06-01-2024
04:56 AM
1 Kudo
Hi @nisha2112goyal , I will try and change the Output Grouping in the JsonREcordSertWRtiter from Array to One Line Per Object and see if that helps.
... View more
05-28-2024
05:51 AM
Apparently in the github repo, there's a folder for processor example of base level, though it might not cover everything yet, might be a good place to solve basic issues. I had issues building a custom relationship as well, then I saw this example, which helped. Official Python Processor Examples
... View more