cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Multi languages support in Databricks

Phani1
Databricks MVP

Hi Team,

How can I set up multiple languages in Databricks? For example, if I connect from Germany, the workspace and data should support German. If I connect from China, it should support Chinese, and if I connect from the US, it should be in English. What are the best practices to achieve this, and I would appreciate your guidance on this topic.

Regards,

Janga

5 REPLIES 5

Rishabh-Pandey
Databricks MVP

Databricks does not provide built-in localization for the workspace interface itself. The UI is generally presented in English, and there are no direct settings for changing the language of the workspace UI based on the user's location.

Rishabh Pandey

How can we handle data which has multiple languages ? 

Rishabh-Pandey
Databricks MVP

1-In that case you need to encode the data in that language format , ex if the data is in japanease then u need to encode in UTF-8 

REATE OR REPLACE TEMP VIEW japanese_data

AS SELECT * FROM

csv.`path/to/japanese_data.csv`

OPTIONS ('encoding'='UTF-8')

also you can use various libraries and tools for natural language processing (NLP) in Databricks.

Rishabh Pandey

jagan_dbx
New Contributor

Is there any update in 2026?

honey_sharma
New Contributor

Great question! Databricks doesn't automatically change the workspace or data language based on a user's location. The best practice is to keep your data language-neutral, store translations in separate tables, detect the user's preferred language (such as de, zh, or en) in your application, and pass that language to your Databricks queries. Your frontend (Power BI, Tableau, React, etc.) can then display the UI in the appropriate language while Databricks returns the matching localized data. This approach is scalable, easy to maintain, and widely used in enterprise applications.