mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-10-06 07:32:38 +02:00
Compare commits
8 Commits
deploy-021
...
deploy-021
Author | SHA1 | Date | |
---|---|---|---|
|
14c87461a5 | ||
|
9afed0a18e | ||
|
afad4deb94 | ||
|
f071c947e4 | ||
|
79996c9348 | ||
|
db907ab06a | ||
|
c49cd9dd95 | ||
|
eec9df3b0a |
@@ -47,6 +47,7 @@ dependencies {
|
|||||||
implementation libs.bundles.curator
|
implementation libs.bundles.curator
|
||||||
implementation libs.bundles.mariadb
|
implementation libs.bundles.mariadb
|
||||||
implementation libs.bundles.httpcomponents
|
implementation libs.bundles.httpcomponents
|
||||||
|
implementation libs.commons.lang3
|
||||||
|
|
||||||
implementation 'org.bouncycastle:bcprov-jdk18on:1.80'
|
implementation 'org.bouncycastle:bcprov-jdk18on:1.80'
|
||||||
implementation 'org.bouncycastle:bcpkix-jdk18on:1.80'
|
implementation 'org.bouncycastle:bcpkix-jdk18on:1.80'
|
||||||
|
@@ -202,7 +202,7 @@ public class PingDao {
|
|||||||
var query = """
|
var query = """
|
||||||
SELECT * FROM DOMAIN_DNS_INFORMATION
|
SELECT * FROM DOMAIN_DNS_INFORMATION
|
||||||
WHERE TS_NEXT_DNS_CHECK <= ? AND NODE_AFFINITY = ?
|
WHERE TS_NEXT_DNS_CHECK <= ? AND NODE_AFFINITY = ?
|
||||||
ORDER BY DNS_CHECK_PRIORITY ASC, TS_NEXT_DNS_CHECK ASC
|
ORDER BY DNS_CHECK_PRIORITY DESC, TS_NEXT_DNS_CHECK ASC
|
||||||
LIMIT ?
|
LIMIT ?
|
||||||
""";
|
""";
|
||||||
try (var conn = dataSource.getConnection();
|
try (var conn = dataSource.getConnection();
|
||||||
|
@@ -96,14 +96,14 @@ public class PingJobScheduler {
|
|||||||
running = true;
|
running = true;
|
||||||
|
|
||||||
allThreads.add(Thread.ofPlatform().daemon().name("new-dns").start(this::fetchNewDnsRecords));
|
allThreads.add(Thread.ofPlatform().daemon().name("new-dns").start(this::fetchNewDnsRecords));
|
||||||
allThreads.add(Thread.ofPlatform().daemon().name("new-pings").start(this::fetchNewAvailabilityJobs));
|
allThreads.add(Thread.ofPlatform().daemon().name("new-availability").start(this::fetchNewAvailabilityJobs));
|
||||||
allThreads.add(Thread.ofPlatform().daemon().name("update-pings").start(this::updateAvailabilityJobs));
|
allThreads.add(Thread.ofPlatform().daemon().name("update-availability").start(this::updateAvailabilityJobs));
|
||||||
allThreads.add(Thread.ofPlatform().daemon().name("update-dns").start(this::updateDnsJobs));
|
allThreads.add(Thread.ofPlatform().daemon().name("update-dns").start(this::updateDnsJobs));
|
||||||
|
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 8; i++) {
|
||||||
allThreads.add(Thread.ofPlatform().daemon().name("ping-job-consumer-" + i).start(this::availabilityJobConsumer));
|
allThreads.add(Thread.ofPlatform().daemon().name("availability-job-consumer-" + i).start(this::availabilityJobConsumer));
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 4; i++) {
|
for (int i = 0; i < 1; i++) {
|
||||||
allThreads.add(Thread.ofPlatform().daemon().name("dns-job-consumer-" + i).start(this::dnsJobConsumer));
|
allThreads.add(Thread.ofPlatform().daemon().name("dns-job-consumer-" + i).start(this::dnsJobConsumer));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -322,7 +322,7 @@ public class PingJobScheduler {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (processingDomainsAvailability.putIfAbsent(job.reference(), true) == null) {
|
if (processingDomainsAvailability.putIfAbsent(job.reference(), true) == null) {
|
||||||
availabilityJobQueue.add(job);
|
availabilityJobQueue.put(job);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -44,8 +44,8 @@ public class HttpClientProvider implements Provider<HttpClient> {
|
|||||||
|
|
||||||
private static CloseableHttpClient createClient() throws NoSuchAlgorithmException {
|
private static CloseableHttpClient createClient() throws NoSuchAlgorithmException {
|
||||||
final ConnectionConfig connectionConfig = ConnectionConfig.custom()
|
final ConnectionConfig connectionConfig = ConnectionConfig.custom()
|
||||||
.setSocketTimeout(30, TimeUnit.SECONDS)
|
.setSocketTimeout(15, TimeUnit.SECONDS)
|
||||||
.setConnectTimeout(30, TimeUnit.SECONDS)
|
.setConnectTimeout(15, TimeUnit.SECONDS)
|
||||||
.setValidateAfterInactivity(TimeValue.ofSeconds(5))
|
.setValidateAfterInactivity(TimeValue.ofSeconds(5))
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
package nu.marginalia.ping.model;
|
package nu.marginalia.ping.model;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
@@ -359,12 +361,12 @@ public record DomainSecurityRecord(
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Builder httpVersion(String httpVersion) {
|
public Builder httpVersion(String httpVersion) {
|
||||||
this.httpVersion = httpVersion;
|
this.httpVersion = StringUtils.truncate(httpVersion, 10);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder httpCompression(String httpCompression) {
|
public Builder httpCompression(String httpCompression) {
|
||||||
this.httpCompression = httpCompression;
|
this.httpCompression = StringUtils.truncate(httpCompression, 50);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -384,12 +386,12 @@ public record DomainSecurityRecord(
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Builder sslCertIssuer(String sslCertIssuer) {
|
public Builder sslCertIssuer(String sslCertIssuer) {
|
||||||
this.sslCertIssuer = sslCertIssuer;
|
this.sslCertIssuer = StringUtils.truncate(sslCertIssuer, 255);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder sslCertSubject(String sslCertSubject) {
|
public Builder sslCertSubject(String sslCertSubject) {
|
||||||
this.sslCertSubject = sslCertSubject;
|
this.sslCertSubject = StringUtils.truncate(sslCertSubject, 255);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -459,37 +461,37 @@ public record DomainSecurityRecord(
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerStrictTransportSecurity(String headerStrictTransportSecurity) {
|
public Builder headerStrictTransportSecurity(String headerStrictTransportSecurity) {
|
||||||
this.headerStrictTransportSecurity = headerStrictTransportSecurity;
|
this.headerStrictTransportSecurity = StringUtils.truncate(headerStrictTransportSecurity, 255);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerReferrerPolicy(String headerReferrerPolicy) {
|
public Builder headerReferrerPolicy(String headerReferrerPolicy) {
|
||||||
this.headerReferrerPolicy = headerReferrerPolicy;
|
this.headerReferrerPolicy = StringUtils.truncate(headerReferrerPolicy, 50);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerXFrameOptions(String headerXFrameOptions) {
|
public Builder headerXFrameOptions(String headerXFrameOptions) {
|
||||||
this.headerXFrameOptions = headerXFrameOptions;
|
this.headerXFrameOptions = StringUtils.truncate(headerXFrameOptions, 50);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerXContentTypeOptions(String headerXContentTypeOptions) {
|
public Builder headerXContentTypeOptions(String headerXContentTypeOptions) {
|
||||||
this.headerXContentTypeOptions = headerXContentTypeOptions;
|
this.headerXContentTypeOptions = StringUtils.truncate(headerXContentTypeOptions, 50);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerXXssProtection(String headerXXssProtection) {
|
public Builder headerXXssProtection(String headerXXssProtection) {
|
||||||
this.headerXXssProtection = headerXXssProtection;
|
this.headerXXssProtection = StringUtils.truncate(headerXXssProtection, 50);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerServer(String headerServer) {
|
public Builder headerServer(String headerServer) {
|
||||||
this.headerServer = headerServer;
|
this.headerServer = StringUtils.truncate(headerServer, 255);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Builder headerXPoweredBy(String headerXPoweredBy) {
|
public Builder headerXPoweredBy(String headerXPoweredBy) {
|
||||||
this.headerXPoweredBy = headerXPoweredBy;
|
this.headerXPoweredBy = StringUtils.truncate(headerXPoweredBy, 255);
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -71,7 +71,20 @@ public class DomainAvailabilityInformationFactory {
|
|||||||
@Nullable DomainAvailabilityRecord previousRecord,
|
@Nullable DomainAvailabilityRecord previousRecord,
|
||||||
HttpResponse rsp) {
|
HttpResponse rsp) {
|
||||||
|
|
||||||
Instant lastError = previousRecord != null ? previousRecord.tsLastAvailable() : null;
|
final Instant now = Instant.now();
|
||||||
|
final Instant lastAvailable;
|
||||||
|
final Instant lastError;
|
||||||
|
final ErrorClassification errorClassification;
|
||||||
|
|
||||||
|
if (rsp.httpStatus() >= 400) {
|
||||||
|
lastError = now;
|
||||||
|
lastAvailable = previousRecord != null ? previousRecord.tsLastAvailable() : null;
|
||||||
|
errorClassification = ErrorClassification.HTTP_SERVER_ERROR;
|
||||||
|
} else {
|
||||||
|
lastAvailable = now;
|
||||||
|
lastError = previousRecord != null ? previousRecord.tsLastError() : null;
|
||||||
|
errorClassification = ErrorClassification.NONE;
|
||||||
|
}
|
||||||
|
|
||||||
return DomainAvailabilityRecord.builder()
|
return DomainAvailabilityRecord.builder()
|
||||||
.domainId(domainId)
|
.domainId(domainId)
|
||||||
@@ -81,13 +94,14 @@ public class DomainAvailabilityInformationFactory {
|
|||||||
.serverIpAsn(getAsn(address))
|
.serverIpAsn(getAsn(address))
|
||||||
.httpSchema(HttpSchema.HTTP)
|
.httpSchema(HttpSchema.HTTP)
|
||||||
.httpStatus(rsp.httpStatus())
|
.httpStatus(rsp.httpStatus())
|
||||||
|
.errorClassification(errorClassification)
|
||||||
.httpResponseTime(rsp.httpResponseTime())
|
.httpResponseTime(rsp.httpResponseTime())
|
||||||
.httpEtag(rsp.headers().getFirst("ETag"))
|
.httpEtag(rsp.headers().getFirst("ETag"))
|
||||||
.httpLastModified(rsp.headers().getFirst("Last-Modified"))
|
.httpLastModified(rsp.headers().getFirst("Last-Modified"))
|
||||||
.tsLastPing(Instant.now())
|
.tsLastPing(now)
|
||||||
.tsLastAvailable(Instant.now())
|
.tsLastAvailable(lastAvailable)
|
||||||
.tsLastError(lastError)
|
.tsLastError(lastError)
|
||||||
.nextScheduledUpdate(Instant.now().plus(backoffStrategy.getOkInterval()))
|
.nextScheduledUpdate(now.plus(backoffStrategy.getOkInterval()))
|
||||||
.backoffFetchInterval(backoffStrategy.getOkInterval())
|
.backoffFetchInterval(backoffStrategy.getOkInterval())
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
@@ -117,7 +131,24 @@ public class DomainAvailabilityInformationFactory {
|
|||||||
updateTime = Instant.now().plus(backoffStrategy.getOkInterval());
|
updateTime = Instant.now().plus(backoffStrategy.getOkInterval());
|
||||||
}
|
}
|
||||||
|
|
||||||
Instant lastError = previousRecord != null ? previousRecord.tsLastAvailable() : null;
|
final Instant now = Instant.now();
|
||||||
|
final Instant lastAvailable;
|
||||||
|
final Instant lastError;
|
||||||
|
final ErrorClassification errorClassification;
|
||||||
|
|
||||||
|
if (!validationResult.isValid()) {
|
||||||
|
lastError = now;
|
||||||
|
lastAvailable = previousRecord != null ? previousRecord.tsLastAvailable() : null;
|
||||||
|
errorClassification = ErrorClassification.SSL_ERROR;
|
||||||
|
} else if (rsp.httpStatus() >= 400) {
|
||||||
|
lastError = now;
|
||||||
|
lastAvailable = previousRecord != null ? previousRecord.tsLastAvailable() : null;
|
||||||
|
errorClassification = ErrorClassification.HTTP_SERVER_ERROR;
|
||||||
|
} else {
|
||||||
|
lastAvailable = Instant.now();
|
||||||
|
lastError = previousRecord != null ? previousRecord.tsLastError() : null;
|
||||||
|
errorClassification = ErrorClassification.NONE;
|
||||||
|
}
|
||||||
|
|
||||||
return DomainAvailabilityRecord.builder()
|
return DomainAvailabilityRecord.builder()
|
||||||
.domainId(domainId)
|
.domainId(domainId)
|
||||||
@@ -127,13 +158,13 @@ public class DomainAvailabilityInformationFactory {
|
|||||||
.serverIpAsn(getAsn(address))
|
.serverIpAsn(getAsn(address))
|
||||||
.httpSchema(HttpSchema.HTTPS)
|
.httpSchema(HttpSchema.HTTPS)
|
||||||
.httpStatus(rsp.httpStatus())
|
.httpStatus(rsp.httpStatus())
|
||||||
.errorClassification(!validationResult.isValid() ? ErrorClassification.SSL_ERROR : ErrorClassification.NONE)
|
.errorClassification(errorClassification)
|
||||||
.httpResponseTime(rsp.httpResponseTime()) // Placeholder, actual timing not implemented
|
.httpResponseTime(rsp.httpResponseTime()) // Placeholder, actual timing not implemented
|
||||||
.httpEtag(rsp.headers().getFirst("ETag"))
|
.httpEtag(rsp.headers().getFirst("ETag"))
|
||||||
.httpLastModified(rsp.headers().getFirst("Last-Modified"))
|
.httpLastModified(rsp.headers().getFirst("Last-Modified"))
|
||||||
.tsLastPing(Instant.now())
|
.tsLastPing(now)
|
||||||
.tsLastError(lastError)
|
.tsLastError(lastError)
|
||||||
.tsLastAvailable(Instant.now())
|
.tsLastAvailable(lastAvailable)
|
||||||
.nextScheduledUpdate(updateTime)
|
.nextScheduledUpdate(updateTime)
|
||||||
.backoffFetchInterval(backoffStrategy.getOkInterval())
|
.backoffFetchInterval(backoffStrategy.getOkInterval())
|
||||||
.build();
|
.build();
|
||||||
|
Reference in New Issue
Block a user