Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (4k points)
The following error comes up while trying to load/import data from a csv file

"An error occurred while opening the file 'D//sample.csv'. The required property  'Partitionkey' was not specified."

1 Answer

0 votes
by (9.6k points)

The partition key is a part of Azure Table storage. Whenever something is uploaded to table storage, a partition is assigned to it. The partition key can move through servers, in case the server assigned to it in the first place is highly loaded. 

The partition key in Table storage is provided by the user itself. Unlike blobs and Azure storage, the user defines the location of the table storage. 

Similarly, Row key is another attribute that is required, to provide the location specifics. Together they are used to identify any entity in the table. 

Hence, providing partition key at the beginning itself is an important step while loading/uploading data. 

Check this AZ-104 certification out to get more insights on azure!

Browse Categories

...