1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
/*
* libhdfs engine
*
* this engine helps perform read/write operations on hdfs cluster using
* libhdfs. hdfs does not support modification of data once file is created.
*
* so to mimic that create many files of small size (e.g 256k), and this
* engine select a file based on the offset generated by fio.
*
* thus, random reads and writes can also be achieved with this logic.
*
*/
#include <math.h>
#include <hdfs.h>
#include "../fio.h"
#include "../optgroup.h"
#define CHUNCK_NAME_LENGTH_MAX 80
#define CHUNCK_CREATION_BUFFER_SIZE 65536
struct hdfsio_data {
hdfsFS fs;
hdfsFile fp;
uint64_t curr_file_id;
};
struct hdfsio_options {
void *pad; /* needed because offset can't be 0 for an option defined used offsetof */
char *host;
char *directory;
unsigned int port;
unsigned int chunck_size;
unsigned int single_instance;
unsigned int use_direct;
};
static struct fio_option options[] = {
{
.name = "namenode",
.lname = "hfds namenode",
.type = FIO_OPT_STR_STORE,
.off1 = offsetof(struct hdfsio_options, host),
.def = "localhost",
.help = "Namenode of the HDFS cluster",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = "hostname",
.lname = "hfds namenode",
.type = FIO_OPT_STR_STORE,
.off1 = offsetof(struct hdfsio_options, host),
.def = "localhost",
.help = "Namenode of the HDFS cluster",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = "port",
.lname = "hdfs namenode port",
.type = FIO_OPT_INT,
.off1 = offsetof(struct hdfsio_options, port),
.def = "9000",
.minval = 1,
.maxval = 65535,
.help = "Port used by the HDFS cluster namenode",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = "hdfsdirectory",
.lname = "hfds directory",
.type = FIO_OPT_STR_STORE,
.off1 = offsetof(struct hdfsio_options, directory),
.def = "/",
.help = "The HDFS directory where fio will create chunks",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = "chunk_size",
.alias = "chunck_size",
.lname = "Chunk size",
.type = FIO_OPT_INT,
.off1 = offsetof(struct hdfsio_options, chunck_size),
.def = "1048576",
.help = "Size of individual chunk",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = "single_instance",
.lname = "Single Instance",
.type = FIO_OPT_BOOL,
.off1 = offsetof(struct hdfsio_options, single_instance),
.def = "1",
.help = "Use a single instance",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = "hdfs_use_direct",
.lname = "HDFS Use Direct",
.type = FIO_OPT_BOOL,
.off1 = offsetof(struct hdfsio_options, use_direct),
.def = "0",
.help = "Use readDirect instead of hdfsRead",
.category = FIO_OPT_C_ENGINE,
.group = FIO_OPT_G_HDFS,
},
{
.name = NULL,
},
};
static int get_chunck_name(char *dest, char *file_name, uint64_t chunk_id) {
return snprintf(dest, CHUNCK_NAME_LENGTH_MAX, "%s_%lu", file_name, chunk_id);
}
static int fio_hdfsio_prep(struct thread_data *td, struct io_u *io_u)
{
struct hdfsio_options *options = td->eo;
struct hdfsio_data *hd = td->io_ops_data;
unsigned long f_id;
char fname[CHUNCK_NAME_LENGTH_MAX];
int open_flags;
/* find out file id based on the offset generated by fio */
f_id = floor(io_u->offset / options-> chunck_size);
if (f_id == hd->curr_file_id) {
/* file is already open */
return 0;
}
if (hd->curr_file_id != -1) {
if ( hdfsCloseFile(hd->fs, hd->fp) == -1) {
log_err("hdfs: unable to close file: %s\n", strerror(errno));
return errno;
}
hd->curr_file_id = -1;
}
if (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_SYNC) {
open_flags = O_RDONLY;
} else if (io_u->ddir == DDIR_WRITE) {
open_flags = O_WRONLY;
} else {
log_err("hdfs: Invalid I/O Operation\n");
return 0;
}
get_chunck_name(fname, io_u->file->file_name, f_id);
hd->fp = hdfsOpenFile(hd->fs, fname, open_flags, 0, 0,
options->chunck_size);
if(hd->fp == NULL) {
log_err("hdfs: unable to open file: %s: %d\n", fname, strerror(errno));
return errno;
}
hd->curr_file_id = f_id;
return 0;
}
static enum fio_q_status fio_hdfsio_queue(struct thread_data *td,
struct io_u *io_u)
{
struct hdfsio_data *hd = td->io_ops_data;
struct hdfsio_options *options = td->eo;
int ret;
unsigned long offset;
offset = io_u->offset % options->chunck_size;
if( (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_WRITE) &&
hdfsTell(hd->fs, hd->fp) != offset && hdfsSeek(hd->fs, hd->fp, offset) != 0 ) {
log_err("hdfs: seek failed: %s, are you doing random write smaller than chunk size ?\n", strerror(errno));
io_u->error = errno;
return FIO_Q_COMPLETED;
};
// do the IO
if (io_u->ddir == DDIR_READ) {
if (options->use_direct) {
ret = readDirect(hd->fs, hd->fp, io_u->xfer_buf, io_u->xfer_buflen);
} else {
ret = hdfsRead(hd->fs, hd->fp, io_u->xfer_buf, io_u->xfer_buflen);
}
} else if (io_u->ddir == DDIR_WRITE) {
ret = hdfsWrite(hd->fs, hd->fp, io_u->xfer_buf,
io_u->xfer_buflen);
} else if (io_u->ddir == DDIR_SYNC) {
ret = hdfsFlush(hd->fs, hd->fp);
} else {
log_err("hdfs: Invalid I/O Operation: %d\n", io_u->ddir);
ret = EINVAL;
}
// Check if the IO went fine, or is incomplete
if (ret != (int)io_u->xfer_buflen) {
if (ret >= 0) {
io_u->resid = io_u->xfer_buflen - ret;
io_u->error = 0;
return FIO_Q_COMPLETED;
} else {
io_u->error = errno;
}
}
if (io_u->error)
td_verror(td, io_u->error, "xfer");
return FIO_Q_COMPLETED;
}
int fio_hdfsio_open_file(struct thread_data *td, struct fio_file *f)
{
if (td->o.odirect) {
td->error = EINVAL;
return 0;
}
return 0;
}
int fio_hdfsio_close_file(struct thread_data *td, struct fio_file *f)
{
struct hdfsio_data *hd = td->io_ops_data;
if (hd->curr_file_id != -1) {
if ( hdfsCloseFile(hd->fs, hd->fp) == -1) {
log_err("hdfs: unable to close file: %s\n", strerror(errno));
return errno;
}
hd->curr_file_id = -1;
}
return 0;
}
static int fio_hdfsio_io_u_init(struct thread_data *td, struct io_u *io_u)
{
struct hdfsio_options *options = td->eo;
struct hdfsio_data *hd = td->io_ops_data;
struct fio_file *f;
uint64_t j,k;
int i, failure = 0;
uint8_t buffer[CHUNCK_CREATION_BUFFER_SIZE];
uint64_t bytes_left;
char fname[CHUNCK_NAME_LENGTH_MAX];
hdfsFile fp;
hdfsFileInfo *fi;
tOffset fi_size;
for_each_file(td, f, i) {
k = 0;
for(j=0; j < f->real_file_size; j += options->chunck_size) {
get_chunck_name(fname, f->file_name, k++);
fi = hdfsGetPathInfo(hd->fs, fname);
fi_size = fi ? fi->mSize : 0;
// fill exist and is big enough, nothing to do
if( fi && fi_size >= options->chunck_size) {
continue;
}
fp = hdfsOpenFile(hd->fs, fname, O_WRONLY, 0, 0,
options->chunck_size);
if(fp == NULL) {
failure = errno;
log_err("hdfs: unable to prepare file chunk %s: %s\n", fname, strerror(errno));
break;
}
bytes_left = options->chunck_size;
memset(buffer, 0, CHUNCK_CREATION_BUFFER_SIZE);
while( bytes_left > CHUNCK_CREATION_BUFFER_SIZE) {
if( hdfsWrite(hd->fs, fp, buffer, CHUNCK_CREATION_BUFFER_SIZE)
!= CHUNCK_CREATION_BUFFER_SIZE) {
failure = errno;
log_err("hdfs: unable to prepare file chunk %s: %s\n", fname, strerror(errno));
break;
};
bytes_left -= CHUNCK_CREATION_BUFFER_SIZE;
}
if(bytes_left > 0) {
if( hdfsWrite(hd->fs, fp, buffer, bytes_left)
!= bytes_left) {
failure = errno;
break;
};
}
if( hdfsCloseFile(hd->fs, fp) != 0) {
failure = errno;
log_err("hdfs: unable to prepare file chunk %s: %s\n", fname, strerror(errno));
break;
}
}
if(failure) {
break;
}
}
if( !failure ) {
fio_file_set_size_known(f);
}
return failure;
}
static int fio_hdfsio_setup(struct thread_data *td)
{
struct hdfsio_data *hd;
struct fio_file *f;
int i;
uint64_t file_size, total_file_size;
if (!td->io_ops_data) {
hd = calloc(1, sizeof(*hd));
hd->curr_file_id = -1;
td->io_ops_data = hd;
}
total_file_size = 0;
file_size = 0;
for_each_file(td, f, i) {
if(!td->o.file_size_low) {
file_size = floor(td->o.size / td->o.nr_files);
total_file_size += file_size;
}
else if (td->o.file_size_low == td->o.file_size_high)
file_size = td->o.file_size_low;
else {
file_size = get_rand_file_size(td);
}
f->real_file_size = file_size;
}
/* If the size doesn't divide nicely with the chunk size,
* make the last files bigger.
* Used only if filesize was not explicitly given
*/
if (!td->o.file_size_low && total_file_size < td->o.size) {
f->real_file_size += (td->o.size - total_file_size);
}
return 0;
}
static int fio_hdfsio_init(struct thread_data *td)
{
struct hdfsio_data *hd = td->io_ops_data;
struct hdfsio_options *options = td->eo;
int failure;
struct hdfsBuilder *bld;
if (options->host == NULL || options->port == 0) {
log_err("hdfs: server not defined\n");
return EINVAL;
}
bld = hdfsNewBuilder();
if (!bld) {
failure = errno;
log_err("hdfs: unable to allocate connect builder\n");
return failure;
}
hdfsBuilderSetNameNode(bld, options->host);
hdfsBuilderSetNameNodePort(bld, options->port);
if(! options->single_instance) {
hdfsBuilderSetForceNewInstance(bld);
}
hd->fs = hdfsBuilderConnect(bld);
/* hdfsSetWorkingDirectory succeed on non-existent directory */
if (hdfsExists(hd->fs, options->directory) < 0 || hdfsSetWorkingDirectory(hd->fs, options->directory) < 0) {
failure = errno;
log_err("hdfs: invalid working directory %s: %s\n", options->directory, strerror(errno));
return failure;
}
return 0;
}
static void fio_hdfsio_io_u_free(struct thread_data *td, struct io_u *io_u)
{
struct hdfsio_data *hd = td->io_ops_data;
if (hd->fs && hdfsDisconnect(hd->fs) < 0) {
log_err("hdfs: disconnect failed: %d\n", errno);
}
}
FIO_STATIC struct ioengine_ops ioengine = {
.name = "libhdfs",
.version = FIO_IOOPS_VERSION,
.flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_NODISKUTIL,
.setup = fio_hdfsio_setup,
.init = fio_hdfsio_init,
.prep = fio_hdfsio_prep,
.queue = fio_hdfsio_queue,
.open_file = fio_hdfsio_open_file,
.close_file = fio_hdfsio_close_file,
.io_u_init = fio_hdfsio_io_u_init,
.io_u_free = fio_hdfsio_io_u_free,
.option_struct_size = sizeof(struct hdfsio_options),
.options = options,
};
static void fio_init fio_hdfsio_register(void)
{
register_ioengine(&ioengine);
}
static void fio_exit fio_hdfsio_unregister(void)
{
unregister_ioengine(&ioengine);
}
|