我们偶尔会得到一些:
Caused by: javax.ejb.EJBException: org.jclouds.http.HttpResponseException:
command: PUT {{PUT_URL}}
HTTP/1.1 failed with response: HTTP/1.1 408 Request Timeout;
content: [<html><h1>Request Timeout</h1><p>The server has waited too long for the request to be sent by the client.</p></html>]
稍后重试通常有效。什么导致这个例外?有没有办法增加swift的超时?
答案 0 :(得分:1)
您的问题没有详细的正确信息。
如果您是开发人员,可以使用以下内容:
import static org.jclouds.Constants.*;
Properties overrides = new Properties();
overrides.setProperty(PROPERTY_MAX_CONNECTIONS_PER_CONTEXT, 20 + "");
overrides.setProperty(PROPERTY_MAX_CONNECTIONS_PER_HOST, 0 + "");
overrides.setProperty(PROPERTY_CONNECTION_TIMEOUT, 5000 + "");
overrides.setProperty(PROPERTY_SO_TIMEOUT, 5000 + "");
overrides.setProperty(PROPERTY_IO_WORKER_THREADS, 20 + "");
// unlimited user threads
overrides.setProperty(PROPERTY_USER_THREADS, 0 + "");
Set<Module> wiring = ImmutableSet.of(new EnterpriseConfigurationModule(), new Log4JLoggingModule());
// same properties and wiring can be used for many services, although the limits are per context
blobStoreContext = ContextBuilder.newBuilder("s3")
.credentials(account, key)
.modules(wiring)
.overrides(overrides)
.buildView(BlobStoreContext.class);
computeContext = ContextBuilder.newBuilder("ec2")
.credentials(account, key)
.modules(wiring)
.overrides(overrides)
.buildView(ComputeServiceContext.class);
以下是JClouds Configuration docs的引用:
<强>超时强>: 根据FutureIterables.awaitCompletion的控制,聚合命令将在需要的时间内完成。 如果需要增加或减少此值,则需要调整属性jclouds.request-timeout或Constants.PROPERTY_REQUEST_TIMEOUT。 “高级配置”部分对此进行了描述。
如果您正在处理自己的群集,那么您可以使用swift proxy-server-configuration中的一些可能的配置选项。
答案 1 :(得分:1)
jclouds 1.7.2包含针对此问题的修复: