โ07-23-2024 10:38 PM
getting this error while running the cells
Failed to upload command result to DBFS. Error message: Status code: 301 Moved Permanently, Error message: <?xml version="1.0" encoding="UTF-8"?> <Error><Code>PermanentRedirect</Code><Message>The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint.</Message><Endpoint>command-results.s3.amazonaws.com</Endpoint><Bucket>command-results</Bucket><RequestId>C10PHW22ATF70H79</RequestId><HostId>5UUKRCZCV6nCW15Tg74mXlN8ChwSalJAHmb3C0QjoTerIaU4GcnutjaSZgwmIv9LfyTvtr3pjYk=</HostId></Error>
and also am not able to access the dbfs root folder getting this error
โ07-25-2024 08:16 AM
โ07-24-2024 12:51 AM
same issue i am also getting does someone knows about it
โ07-24-2024 01:30 AM
I got this error when I wrote too many display() dataframe lines in the same notebook cell. Having only less than four display() solved the error for me.
โ07-24-2024 02:01 AM
Same problem and I don't know how to solve.. Here an example of cell that has always worked correctly but from yesterday it stopped.
# Compute the correlation matrix
correlation_matrix = data.corr()
# Set up the matplotlib figure
plt.figure(figsize=(14, 10))
# Draw the heatmap with the mask and correct aspect ratio
sns.heatmap(correlation_matrix, annot=True, fmt=".2f", cmap='coolwarm',
cbar_kws={"shrink": .8}, linewidths=0.5, linecolor='black')
# Add a title
plt.title('Correlation Matrix', fontsize=16)
# Adjust the font size for better readability
plt.xticks(fontsize=12, rotation=45, ha='right')
plt.yticks(fontsize=12)
# Show the plot
plt.show()
โ07-25-2024 08:16 AM
I had the same issue. Thanks to you, my project works now.
Passionate about hosting events and connecting people? Help us grow a vibrant local communityโsign up today to get started!
Sign Up Now