2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2014 The Prometheus Authors
|
2014-10-23 06:18:32 -07:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package local
|
|
|
|
|
|
|
|
const (
|
|
|
|
namespace = "prometheus"
|
|
|
|
subsystem = "local_storage"
|
|
|
|
|
|
|
|
opTypeLabel = "type"
|
|
|
|
|
|
|
|
// Op-types for seriesOps.
|
2014-11-12 08:12:57 -08:00
|
|
|
create = "create"
|
|
|
|
archive = "archive"
|
|
|
|
unarchive = "unarchive"
|
|
|
|
memoryPurge = "purge_from_memory"
|
|
|
|
archivePurge = "purge_from_archive"
|
2016-01-11 08:22:16 -08:00
|
|
|
requestedPurge = "purge_on_request"
|
2014-11-12 08:12:57 -08:00
|
|
|
memoryMaintenance = "maintenance_in_memory"
|
|
|
|
archiveMaintenance = "maintenance_in_archive"
|
Handle errors caused by data corruption more gracefully
This requires all the panic calls upon unexpected data to be converted
into errors returned. This pollute the function signatures quite
lot. Well, this is Go...
The ideas behind this are the following:
- panic only if it's a programming error. Data corruptions happen, and
they are not programming errors.
- If we detect a data corruption, we "quarantine" the series,
essentially removing it from the database and putting its data into
a separate directory for forensics.
- Failure during writing to a series file is not considered corruption
automatically. It will call setDirty, though, so that a
crashrecovery upon the next restart will commence and check for
that.
- Series quarantining and setDirty calls are logged and counted in
metrics, but are hidden from the user of the interfaces in
interface.go, whith the notable exception of Append(). The reasoning
is that we treat corruption by removing the corrupted series, i.e. a
query for it will return no results on its next call anyway, so
return no results right now. In the case of Append(), we want to
tell the user that no data has been appended, though.
Minor side effects:
- Now consistently using filepath.* instead of path.*.
- Introduced structured logging where I touched it. This makes things
less consistent, but a complete change to structured logging would
be out of scope for this PR.
2016-02-25 03:23:42 -08:00
|
|
|
completedQurantine = "quarantine_completed"
|
|
|
|
droppedQuarantine = "quarantine_dropped"
|
|
|
|
failedQuarantine = "quarantine_failed"
|
2014-10-23 06:18:32 -07:00
|
|
|
|
2015-03-19 09:06:16 -07:00
|
|
|
seriesLocationLabel = "location"
|
|
|
|
|
|
|
|
// Maintenance types for maintainSeriesDuration.
|
|
|
|
maintainInMemory = "memory"
|
|
|
|
maintainArchived = "archived"
|
2016-04-25 07:43:52 -07:00
|
|
|
|
|
|
|
discardReasonLabel = "reason"
|
|
|
|
|
|
|
|
// Reasons to discard samples.
|
|
|
|
outOfOrderTimestamp = "timestamp_out_of_order"
|
|
|
|
duplicateSample = "multiple_values_for_timestamp"
|
2014-10-23 06:18:32 -07:00
|
|
|
)
|