- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Problems with utf-8
- Labels:
-
Apache Kudu
Created 02-10-2025 03:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello everyone.
I want to create a table to support ute-8 in an string column, however, I don´t know the value I have to pass when I create the table:
create table test(
id int,
message string ENCODING codec)
as kudu;
Which are all differents values I can use to codec parameter for utf-8
Thanks in advance.
Created 02-10-2025 10:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Joseguebri Welcome to our community! To help you get the best possible answer, I have tagged our Kudu experts @ChrisGe who may be able to assist you further.
Please feel free to provide any additional information or details about your query, and we hope that you will find a satisfactory solution to your question.
Regards,
Vidya Sargur,Community Manager
Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.
Learn more about the Cloudera Community:
Created 02-11-2025 06:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Created 02-10-2025 11:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you can use "varchar" define your kudu table column, see below:
Created 02-11-2025 07:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much.
Actually, I am tryin to insert values from a TIBCO EBX table to a cloudera´s table. The connection is via JDBC. I tried with varchar column and it failed too.
Thanks in advance.
