summaryrefslogtreecommitdiffstats
path: root/xlators/performance/quick-read/src
diff options
context:
space:
mode:
authorPoornima G <pgurusid@redhat.com>2017-06-30 12:52:21 +0530
committerRaghavendra G <rgowdapp@redhat.com>2017-12-13 08:11:37 +0000
commitc26cadd31dfa128c4ec6883f69d654813f351018 (patch)
treefd428b49ec15397920a5ff50974053683f949f4a /xlators/performance/quick-read/src
parent429f2436b33793136836042ccc43ce4cfd7f89f3 (diff)
quick-read: Integrate quick read with upcall and increase cache time
Fixes : #261 Co-author: Subha sree Mohankumar <smohanku@redhat.com> Change-Id: Ie9dd94e86459123663b9b200d92940625ef68eab Signed-off-by: Poornima G <pgurusid@redhat.com>
Diffstat (limited to 'xlators/performance/quick-read/src')
-rw-r--r--xlators/performance/quick-read/src/quick-read.c117
-rw-r--r--xlators/performance/quick-read/src/quick-read.h10
2 files changed, 123 insertions, 4 deletions
diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c
index e4f0885de2c..71875200dde 100644
--- a/xlators/performance/quick-read/src/quick-read.c
+++ b/xlators/performance/quick-read/src/quick-read.c
@@ -12,6 +12,7 @@
#include "quick-read.h"
#include "statedump.h"
#include "quick-read-messages.h"
+#include "upcall-utils.h"
qr_inode_t *qr_inode_ctx_get (xlator_t *this, inode_t *inode);
void __qr_inode_prune (qr_inode_table_t *table, qr_inode_t *qr_inode);
@@ -388,6 +389,9 @@ __qr_cache_is_fresh (xlator_t *this, qr_inode_t *qr_inode)
timersub (&now, &qr_inode->last_refresh, &diff);
+ if (qr_inode->last_refresh.tv_sec < priv->last_child_down)
+ return _gf_false;
+
if (diff.tv_sec >= conf->cache_timeout)
return _gf_false;
@@ -594,9 +598,13 @@ unlock:
iov.iov_base = iobuf->ptr;
iov.iov_len = op_ret;
+ GF_ATOMIC_INC (priv->qr_counter.cache_hit);
STACK_UNWIND_STRICT (readv, frame, op_ret, 0, &iov, 1,
&buf, iobref, xdata);
- }
+ } else {
+ GF_ATOMIC_INC (priv->qr_counter.cache_miss);
+ }
+
if (iobuf)
iobuf_unref (iobuf);
@@ -812,6 +820,12 @@ qr_priv_dump (xlator_t *this)
gf_proc_dump_write ("total_files_cached", "%d", file_count);
gf_proc_dump_write ("total_cache_used", "%d", total_size);
+ gf_proc_dump_write ("cache-hit", "%"PRId64,
+ priv->qr_counter.cache_hit);
+ gf_proc_dump_write ("cache-hit", "%"PRId64,
+ priv->qr_counter.cache_miss);
+ gf_proc_dump_write ("cache-hit", "%"PRId64,
+ priv->qr_counter.file_data_invals);
out:
return 0;
@@ -899,6 +913,9 @@ reconfigure (xlator_t *this, dict_t *options)
GF_OPTION_RECONF ("cache-timeout", conf->cache_timeout, options, int32,
out);
+ GF_OPTION_RECONF ("cache-invalidation", conf->qr_invalidation, options,
+ bool, out);
+
GF_OPTION_RECONF ("cache-size", cache_size_new, options, size_uint64, out);
if (!check_cache_size_ok (this, cache_size_new)) {
ret = -1;
@@ -1046,6 +1063,8 @@ init (xlator_t *this)
GF_OPTION_INIT ("cache-timeout", conf->cache_timeout, int32, out);
+ GF_OPTION_INIT ("cache-invalidation", conf->qr_invalidation, bool, out);
+
GF_OPTION_INIT ("cache-size", conf->cache_size, size_uint64, out);
if (!check_cache_size_ok (this, conf->cache_size)) {
ret = -1;
@@ -1082,6 +1101,8 @@ init (xlator_t *this)
ret = 0;
+ time (&priv->last_child_down);
+
this->private = priv;
out:
if ((ret == -1) && priv) {
@@ -1133,6 +1154,90 @@ qr_conf_destroy (qr_conf_t *conf)
void
+qr_update_child_down_time (xlator_t *this, time_t *now)
+{
+ qr_private_t *priv = NULL;
+
+ priv = this->private;
+
+ LOCK (&priv->lock);
+ {
+ priv->last_child_down = *now;
+ }
+ UNLOCK (&priv->lock);
+}
+
+
+static int
+qr_invalidate (xlator_t *this, void *data)
+{
+ struct gf_upcall *up_data = NULL;
+ struct gf_upcall_cache_invalidation *up_ci = NULL;
+ inode_t *inode = NULL;
+ int ret = 0;
+ inode_table_t *itable = NULL;
+ qr_private_t *priv = NULL;
+
+ up_data = (struct gf_upcall *)data;
+
+ if (up_data->event_type != GF_UPCALL_CACHE_INVALIDATION)
+ goto out;
+
+ priv = this->private;
+ up_ci = (struct gf_upcall_cache_invalidation *)up_data->data;
+
+ if (up_ci && (up_ci->flags & UP_WRITE_FLAGS)) {
+ GF_ATOMIC_INC (priv->qr_counter.file_data_invals);
+ itable = ((xlator_t *)this->graph->top)->itable;
+ inode = inode_find (itable, up_data->gfid);
+ if (!inode) {
+ ret = -1;
+ goto out;
+ }
+ qr_inode_prune (this, inode);
+ }
+
+out:
+ if (inode)
+ inode_unref (inode);
+
+ return ret;
+}
+
+
+int
+notify (xlator_t *this, int event, void *data, ...)
+{
+ int ret = 0;
+ qr_private_t *priv = NULL;
+ time_t now = 0;
+ qr_conf_t *conf = NULL;
+
+ priv = this->private;
+ conf = &priv->conf;
+
+ switch (event) {
+ case GF_EVENT_CHILD_DOWN:
+ case GF_EVENT_SOME_DESCENDENT_DOWN:
+ time (&now);
+ qr_update_child_down_time (this, &now);
+ break;
+ case GF_EVENT_UPCALL:
+ if (conf->qr_invalidation)
+ ret = qr_invalidate (this, data);
+ break;
+ default:
+ break;
+ }
+
+ if (default_notify (this, event, data) != 0)
+ ret = -1;
+
+ return ret;
+}
+
+
+void
fini (xlator_t *this)
{
qr_private_t *priv = NULL;
@@ -1189,12 +1294,10 @@ struct volume_options options[] = {
.default_value = "128MB",
.op_version = {1},
.flags = OPT_FLAG_CLIENT_OPT | OPT_FLAG_SETTABLE | OPT_FLAG_DOC,
- .description = "Size of the read cache."
+ .description = "Size of small file read cache."
},
{ .key = {"cache-timeout"},
.type = GF_OPTION_TYPE_INT,
- .min = 1,
- .max = 60,
.default_value = "1",
},
{ .key = {"max-file-size"},
@@ -1203,5 +1306,11 @@ struct volume_options options[] = {
.max = 1 * GF_UNIT_KB * 1000,
.default_value = "64KB",
},
+ { .key = {"cache-invalidation"},
+ .type = GF_OPTION_TYPE_BOOL,
+ .default_value = "false",
+ .description = "When \"on\", invalidates/updates the metadata cache,"
+ " on receiving the cache-invalidation notifications",
+ },
{ .key = {NULL} }
};
diff --git a/xlators/performance/quick-read/src/quick-read.h b/xlators/performance/quick-read/src/quick-read.h
index 0697bf5fb14..415572e9c27 100644
--- a/xlators/performance/quick-read/src/quick-read.h
+++ b/xlators/performance/quick-read/src/quick-read.h
@@ -55,6 +55,7 @@ struct qr_conf {
int32_t cache_timeout;
uint64_t cache_size;
int max_pri;
+ gf_boolean_t qr_invalidation;
struct list_head priority_list;
};
typedef struct qr_conf qr_conf_t;
@@ -66,9 +67,18 @@ struct qr_inode_table {
};
typedef struct qr_inode_table qr_inode_table_t;
+struct qr_statistics {
+ gf_atomic_t cache_hit;
+ gf_atomic_t cache_miss;
+ gf_atomic_t file_data_invals; /* No. of invalidates received from upcall */
+};
+
struct qr_private {
qr_conf_t conf;
qr_inode_table_t table;
+ time_t last_child_down;
+ gf_lock_t lock;
+ struct qr_statistics qr_counter;
};
typedef struct qr_private qr_private_t;